home *** CD-ROM | disk | FTP | other *** search
/ PC Master 5 / PC MASTER 5.iso / INTERNET / KIT / WIN95 / MSIE30.EXE / ieakjava.exe / classr.exe / com / ms / directX / IdSoundBuffer.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-01-31  |  2.1 KB  |  48 lines

  1. package com.ms.directX;
  2.  
  3. import com.ms.com.IUnknown;
  4.  
  5. public interface IdSoundBuffer extends IUnknown {
  6.    void Stop();
  7.  
  8.    void InternalSetObject(IUnknown var1);
  9.  
  10.    IUnknown InternalGetObject();
  11.  
  12.    void SetCurrentPosition(int var1);
  13.  
  14.    int GetPan();
  15.  
  16.    void SetPan(int var1);
  17.  
  18.    void GetCurrentPosition(DSCursors var1);
  19.  
  20.    int GetVolume();
  21.  
  22.    void SetVolume(int var1);
  23.  
  24.    void Initialize(dSound var1, DSBufferDesc var2, byte[] var3);
  25.  
  26.    void WriteBuffer(int var1, int var2, byte[] var3, int var4);
  27.  
  28.    void Restore();
  29.  
  30.    void GetCaps(DSBCaps var1);
  31.  
  32.    int GetFormatSize();
  33.  
  34.    void GetFormat(byte[] var1, int var2);
  35.  
  36.    int GetFrequency();
  37.  
  38.    void SetFormat(byte[] var1);
  39.  
  40.    void Play(int var1, int var2, int var3);
  41.  
  42.    int GetStatus();
  43.  
  44.    void TransferToSoundBuffer(DSResourceDesc var1, int var2);
  45.  
  46.    void SetFrequency(int var1);
  47. }
  48.